home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\INCLUDE\IGNORE.H < prev    next >
C/C++ Source or Header  |  1994-12-28  |  964b  |  42 lines

  1. /*
  2.  * ignore.h: header for ignore.c 
  3.  *
  4.  * Written By Michael Sandrof
  5.  *
  6.  * Copyright(c) 1990 
  7.  *
  8.  * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
  9.  *
  10.  * @(#)$Id: ignore.h,v 1.4 1994/07/02 02:38:10 mrg Stab $
  11.  */
  12.  
  13. #ifndef _IGNORE_H_
  14. #define _IGNORE_H_
  15.  
  16. /* declared in ignore.c */
  17. extern    int    ignore_usernames;
  18. extern    int    is_ignored();
  19. extern    char    highlight_char;
  20. extern    int    ignore_combo();
  21. extern    int    double_ignore();
  22.  
  23. /* Type of ignored nicks */
  24. #define IGNORE_MSGS    0x0001
  25. #define IGNORE_PUBLIC    0x0002
  26. #define IGNORE_WALLS    0x0004
  27. #define IGNORE_WALLOPS    0x0008
  28. #define IGNORE_INVITES    0x0010
  29. #define IGNORE_NOTICES    0x0020
  30. #define IGNORE_NOTES    0x0040
  31. #define IGNORE_CTCPS    0x0080
  32. #define IGNORE_CRAP    0x0100
  33. #define IGNORE_ALL (IGNORE_MSGS | IGNORE_PUBLIC | IGNORE_WALLS | \
  34.     IGNORE_WALLOPS | IGNORE_INVITES | IGNORE_NOTICES | IGNORE_NOTES | \
  35.     IGNORE_CTCPS | IGNORE_CRAP)
  36.  
  37. #define IGNORED 1
  38. #define DONT_IGNORE 2
  39. #define HIGHLIGHTED -1
  40.  
  41. #endif /* _IGNORE_H_ */
  42.